home *** CD-ROM | disk | FTP | other *** search
/ Sun Solutions 1997 April to September / Sun Solutions CD - APR '97 - SEP '97 (704-3778-12 Rev. H)(Sun Microsystems, Inc.)(1997).iso / products / Hyperion / src / Makefile.osf1 < prev    next >
Makefile  |  1997-02-26  |  2KB  |  77 lines

  1. # @(#)Makefile.osf1    1.2 4/8/94
  2.  
  3. # Set these to the locations of your XView include files and libraries.
  4. INCDIR = /usr/local/xview3.2/xview3.2-dist/include
  5. LIBDIR = /usr/local/xview3.2/xview3.2-dist/lib
  6.  
  7. # Set these to the directory names in which to install the software and
  8. # help files.  HLPDIR should point to wherever the other XView ".info"
  9. # files live.
  10. BINDIR = /usr/bin
  11. HLPDIR = /usr/lib/X11/help
  12.  
  13. # Set this to the directory containing manual pages.  Manual pages will only
  14. # be installed if you "make install.man".
  15. MANDIR = /usr/local/man
  16.  
  17. # Set these to the manual sections (e.g. 1, 4, 5, l) for the program and
  18. # database file manual pages, respectively.
  19. PEXT = 1
  20. DEXT = 5
  21.  
  22. # And you shouldn't need to change anything from this line on.
  23.  
  24. ############################################################################
  25. # Parameters.
  26.  
  27. PROGRAM = workman
  28. OBJECTS = workman_stubs.o database.o cdinfo.o display.o setup.o \
  29.     ui_cdinfo.o plat_sun.o plat_hpux.o plat_linux.o plat_news.o \
  30.     plat_bsd386.o plat_ultrix.o cdrom.o scsi.o drv_toshiba.o drv_sony.o \
  31.     plat_svr4.o plat_freebsd.o plat_osf1.o
  32. SOURCES.c = workman_stubs.c database.c cdinfo.c display.c setup.c \
  33.     ui_cdinfo.c plat_sun.c plat_hpux.c plat_linux.c plat_news.c \
  34.     plat_bsd386.c plat_ultrix.c cdrom.c scsi.c drv_toshiba.c drv_sony.c \
  35.     plat_svr4.c plat_freebsd.c plat_osf1.c
  36. SOURCES.h = struct.h workman_ui.h
  37.  
  38. # Compiler flags.
  39.  
  40. CFLAGS = -O -I$(INCDIR) -DOSF
  41. LDFLAGS = -L$(LIBDIR)
  42. LDLIBS = -lxview -lolgx -lX11 
  43.  
  44. # Standard targets.
  45.  
  46. all:     $(PROGRAM) $(PROGRAM).doc workmandb.doc
  47.  
  48. $(PROGRAM): $(SOURCES.c) $(OBJECTS)
  49.     $(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(LDLIBS)
  50.  
  51. clean:
  52.     $(RM) $(OBJECTS) *.BAK *.delta core
  53.  
  54. install: $(PROGRAM)
  55.     cp $(PROGRAM) $(BINDIR)
  56.     chmod 755 $(BINDIR)/$(PROGRAM)
  57.     cp $(PROGRAM).info $(HLPDIR)
  58.     chmod 644 $(HLPDIR)/$(PROGRAM).info
  59.  
  60. install.man: workman.man workmandb.man $(MANDIR)/man$(PEXT) $(MANDIR)/man$(DEXT)
  61.     cp workman.man $(MANDIR)/man$(PEXT)/workman.$(PEXT)
  62.     chmod 644 $(MANDIR)/man$(PEXT)/workman.$(PEXT)
  63.     cp workmandb.man $(MANDIR)/man$(DEXT)/workmandb.$(DEXT)
  64.     chmod 644 $(MANDIR)/man$(DEXT)/workmandb.$(DEXT)
  65.  
  66. display.o: display.c workman_ui.h
  67. setup.o: setup.c workman_ui.h
  68. workman_stubs.o: workman_stubs.c workman_ui.h
  69. ui_cdinfo.o: ui_cdinfo.c workman_ui.h
  70. # This next one isn't completely true, but close enough
  71. $(OBJECTS): struct.h
  72.  
  73. $(PROGRAM).doc: $(PROGRAM).man
  74.     nroff -man $(PROGRAM).man > $(PROGRAM).doc
  75. workmandb.doc: workmandb.man
  76.     nroff -man workmandb.man > workmandb.doc
  77.